home *** CD-ROM | disk | FTP | other *** search
- "FILE"="Xteq Systems X-Setup Plugin 3.1"
- "TYPE"="7"
- "COUNT"="2"
- "TEXT 1"="Item 1"
- "TEXT 2"="Item 2"
- "UIPATH"="Test Plug-ins"
- "NAME"="Event Tester 1 (simple)"
- "LANGUAGE"="VBScript"
- "DESCRIPTION 1"="This plug-in shows which events are generated by X-Setup."
- "AUTHOR"="Xteq Systems"
- "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
-
-
-
- 'Called when the Plugin is started
- Sub Plugin_Initialize
- DebugMsg "Plugin_Initialize invoked"
- End Sub
-
-
- 'Called when the Plugin should validate the Data the user has entered
- Sub Plugin_CheckData(ElementIndex)
- DebugMsg "Plugin_CheckData invoked. ElementIndex: " & ElementIndex
- End Sub
-
-
- 'Called when the Plugin should apply the changes
- Sub Plugin_Apply(ElementIndex,ElementSubIndex)
- DebugMsg "Plugin_Apply invoked. ElementIndex: " & ElementIndex & " ElementSubIndex: " & ElementSubIndex
- End Sub
-
-
- 'Called when the Plugin is about to be removed from memory
- Sub Plugin_Terminate
- DebugMsg "Plugin_Terminate invoked"
- End Sub
-
-
-
-